home *** CD-ROM | disk | FTP | other *** search
/ The Fatted Calf / The Fatted Calf.iso / Applications / Misc / Crossword / Source / StopWatch.h < prev    next >
Text File  |  1992-10-11  |  368b  |  26 lines

  1. /*
  2.  
  3. File StopWatch.h
  4.  
  5. A stopwatch can be stopped, started, and reset.  It measures total process time, including time spent in the system.
  6.  
  7. */
  8.  
  9. #import <objc/Object.h>
  10.  
  11.  
  12. /* ————————————————————————————————————————————————————————————————————————————  */
  13.  
  14.  
  15. @interface StopWatch:Object
  16. {
  17.     float    time;
  18.     float    beganAt;
  19. }
  20.  
  21. - (float) getTime;
  22. - reset;
  23. - start;
  24. - stop;
  25.  
  26. @end